home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
umich
/
telecomm
/
sticpsrc.lzh
/
SOURCE.ARC
/
PKVEC.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1989-08-09
|
409 b
|
41 lines
name pkvec
include pmacros.h
extproc pkint
; pkvec - Packet driver receive call handler
pubproc pkvec
; save regs, making them available to pkint()
push es
push ds
push ax
push bx
push cx
push dx
push bp
push si
push di
getds
mov ds,ax
call pkint@
pop di
pop si
pop bp
pop dx
pop cx
pop bx
pop ax
pop ds
pop es
ret
pend pkvec
end